home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / gencsrc.zip / MORTYPES.C < prev    next >
C/C++ Source or Header  |  1987-11-21  |  705b  |  20 lines

  1.                                          /* Chapter 4 - Program 2 */
  2. /* The purpose of this file is to introduce additional data types */
  3.  
  4. main()
  5. {
  6. int a,b,c;            /* -32768 to 32767 with no decimal point */
  7. char x,y,z;           /* -128 to 127 with no decimal point     */
  8. float num,toy,thing;  /* 3.4E-38 to 3.4E+38 with decimal point */
  9.  
  10.    a = b = c = -27;
  11.    x = y = z = 'A';
  12.    num = toy = thing = 3.6792;
  13.  
  14.    a = y;           /* a is now 65 (character A)               */
  15.    x = b;           /* x is now -27                            */
  16.    num = b;         /* num will now be -27.00                  */
  17.    a = toy;         /* a will now be 3                         */
  18.  
  19. }
  20.